home *** CD-ROM | disk | FTP | other *** search
- on NavigateComplete url
- put url into field "location"
- end
-
- on StatusTextChange text
- put text into field "statustext"
- end
-
- on TitleChange text
- put text into field "title"
- end
-
- on DownloadBegin
- global iconanimation
- set iconanimation to 1
- end
-
- on DownloadComplete
- global iconanimation
- set iconanimation to 0
- end
-
- on ProgressChange Progress, ProgressMax
- if ProgressMax = 0 then
- put " " into field "progressindicator"
- exit
- else
- if Progress = -1 then
- put "Done" into field "progressindicator"
- else
- if ProgressMax = 100 then
- put "Progress= " & Progress & "%" into field "progressindicator"
- end if
- end if
- end if
- end
-